home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / for_birt.swf / scripts / frame_3 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  402 b   |  20 lines

  1. stop();
  2. game_start_bt.onPress = function()
  3. {
  4.    so1.start(0,1);
  5.    this.gotoAndStop(2);
  6. };
  7. game_start_bt.onRollOver = function()
  8. {
  9.    so1.start(0,1);
  10.    this.game_start_bt_rollover.gotoAndStop(2);
  11. };
  12. game_start_bt.onRollOut = function()
  13. {
  14.    this.game_start_bt_rollover.gotoAndStop(1);
  15. };
  16. game_start_bt.onRelease = game_start_bt.onReleaseOutside = function()
  17. {
  18.    gotoAndStop(4);
  19. };
  20.